home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
- write "You can use write as simply a substitute for ECHO"
- pause
- cls
- write "Or, you can write in full color. This is blinking white on red." 207
- pause
- cls
- write "You can center your text on the current line." 31 /c
- pause
- cls
- write "You can center your text on ANY line..." 78 /r10 /c
- pause
- cls
- write "Or, you can place your text anywhere you like!" /r4 /l34 15
- write "Or, you can place your text anywhere you like!" /r14 /l10 112
- write "Or, you can place your text anywhere you like!" /r20 /l25 75
- pause
- cls
- write "You can also use WRITE to display text files." 15 /c
- write "I'm going to display the documentation next. If you" 14 /c
- write "would like to skip this part, press CTRL-C now." 14 /c
- pause
- write @write.doc 79
-
-